home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib1 / v_01_02 / 1n02031b < prev    next >
Encoding:
Text File  |  1995-11-01  |  483 b   |  13 lines

  1.  
  2.    to handle remoteCommand msgstring 
  3.      conditions 
  4.        when item 1 of msgstring = "addRecord" 
  5.          send addRecord item 2 of msgstring, item 3 of msgstring,\ 
  6.                         item 4 of msgstring, item 5 of msgstring 
  7.        when item 1 of msgstring = "changeRecord" 
  8.          send changeRecord item 2 of msgstring, item 3 of msgstring,\ 
  9.                            item 4 of msgstring, item 5 of msgstring 
  10.      end conditions 
  11.    end remoteCommand 
  12.  
  13.